home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Graphics / Plotting / aa_Intel_Only / Gnuplot / GnuplotSource / NoPane.m < prev    next >
Encoding:
Text File  |  1995-06-12  |  731 b   |  48 lines

  1. /*
  2.  *  Copyright (C) 1993  Robert Davis
  3.  *
  4.  *  This program is free software; you can redistribute it and/or
  5.  *  modify it under the terms of Version 2, or any later version, of 
  6.  *  the GNU General Public License as published by the Free Software 
  7.  *  Foundation.
  8.  */
  9.  
  10.  
  11. static char RCSId[]="$Id: NoPane.m,v 1.4 1993/05/04 16:22:19 davis Exp $";
  12.  
  13.  
  14. #import <appkit/Application.h>
  15. #import "NoPane.h"
  16.  
  17.  
  18. @implementation NoPane
  19.  
  20.  
  21. - init
  22. {
  23.     [super init];
  24.  
  25.     [NXApp loadNibSection: "NoPane.nib"
  26.             owner: self
  27.         withNames: NO
  28.          fromZone: [self zone]];
  29.  
  30.     return self;
  31. }
  32.  
  33.  
  34. - (BOOL)updateStatus:aStatus doc:aDoc
  35. {
  36.     return NO;
  37. }
  38.  
  39.  
  40. // Shuts up the compiler about unused RCSId
  41. - (const char *) rcsid
  42. {
  43.     return RCSId;
  44. }
  45.  
  46.  
  47. @end
  48.